home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / BUS / BibTeX 1.06 FAT.sit / BibTeX ƒ / Source code / StdPrefsLib / StdPrefsLibPrivate.h < prev    next >
Text File  |  1994-03-17  |  1KB  |  53 lines

  1. /*
  2.     File:        StdPrefsLibPrivate.h
  3.  
  4.     Contains:    Private header file for standard preferences library 
  5.                 routines.
  6.  
  7.                 Refer to develop Issue 18, "The Right Way to Implement 
  8.                 Preferences Files", for additional details on this code.
  9.                 
  10.     Written by:    Gary Woodcock
  11.  
  12.     Copyright:    ゥ 1993-94 by Apple Computer, Inc.
  13.  
  14.     Change History (most recent first):
  15.     
  16.                   3/3/94    Version 1.0.
  17.     
  18.     Notes:         This code uses Apple's Universal Interfaces for C.
  19.     
  20.                 Send bug reports to Gary Woodcock at AOL: gwoodcock
  21.                 or Internet: gwoodcock@aol.com.
  22. */
  23.  
  24. //-----------------------------------------------------------------------
  25. // Includes
  26.  
  27. #ifndef    _STDPREFSLIBPRIVATE_
  28. #define    _STDPREFSLIBPRIVATE_
  29.  
  30. #include "CompileFlags.h"
  31.  
  32. #ifndef forRez
  33.  
  34. #include "StdPrefsLib.h"
  35.  
  36. #endif forRez
  37.  
  38. //-----------------------------------------------------------------------
  39. // Private constants
  40.  
  41. // Base resource ID
  42. #define kStdPrefsLibBaseResID    400
  43.  
  44. #define    kStdPrefsLibStrsID        kStdPrefsLibBaseResID
  45. #define kPreambleStrID            1
  46. #define    kPostambleStrID            2
  47.  
  48. //-----------------------------------------------------------------------
  49.  
  50. #endif _STDPREFSLIBPRIVATE_
  51.  
  52. //-----------------------------------------------------------------------
  53.